I have a dual boot system with both Linux and Windows on it. I normally live on the Linux side. I use Windows almost exclusively for TurboTax. I’m looking for a substitute so I can get rid of Windows completely.
find ~/pCloudDrive/backup -type f -exec rm ″{}″ \;
Local backups take two usb drives. They are rotated. The most recent backup goes into a fireproof box or in a safe-deposit box at the credit union. Bank/Credit Union is best. Disk image backups at least evsery two weeks. Offsite files backup daily.
#!/bin/bash OUTPUT_DIR=/media/$LOGNAME/5GB_USB_Drive OUTPUT_FILE=$OUTPUT_DIR/all_my_files.tgz cd /home if [[ -d $OUTPUT_DIR ]]; then tar -cvf - --one-file-system --sort=name . |pigz -k -9 -p32 2>/dev/null >$OUTPUT_FILE echo $? else echo "please plug in the external usb drive" fi
I've had to recover a dead drive. Only one of the three backups was successful. Not sure why. But I was able to restore everything. No data lost! Note: the fireproof box needs to be able to stand fire for two hours! It’s more expensive but worth it.
You can also burn the pictures/videos to multiple dvds or store them on a cheap (as in slow) usb drive. Give the dvds or usb drive to a friend for safety. Unless you are in California this should work, since both of your houses might burn down. Not making a joke here.